Merged
Conversation
kevinjqliu
approved these changes
Jan 14, 2026
Contributor
kevinjqliu
left a comment
There was a problem hiding this comment.
Thanks! This makes sense, lets give this a try
This was referenced Jan 14, 2026
Closed
kevinjqliu
added a commit
that referenced
this pull request
Jan 16, 2026
<!--
Thanks for opening a pull request!
-->
<!-- In the case this PR will resolve an issue, please replace
${GITHUB_ISSUE_ID} below with the actual Github issue id. -->
<!-- Closes #${GITHUB_ISSUE_ID} -->
# Rationale for this change
Follow up to #2912
CI still fails with
https://github.com/apache/iceberg-python/actions/runs/21004478697/job/60383069033
```
Error: cibuildwheel: Command ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-0tbpuziz\\cp310-win_amd64\\venv-test\\Scripts\\pip.EXE', 'install', 'pytest==7.4.2', 'moto==5.0.1', 'pytest-lazy-fixture==0.6.3', 'sqlalchemy>=2.0.18,<3'] failed with code 1.
Error: Process completed with exit code 1.
```
This PR fixes syncs the env with uv so we dont need to explicitly
specify the deps here
## Are these changes tested?
Yes
https://github.com/apache/iceberg-python/actions/runs/21007310527
## Are there any user-facing changes?
<!-- In the case of user-facing changes, please add the changelog label.
-->
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #2911
Rationale for this change
PR #2906 added imports to
tests/conftest.pythat requirepytest-lazy-fixtureandsqlalchemy. The nightly build's wheel test uses a minimal environment that doesn't include these dependencies, causingtests/avro/test_decoder.pyto fail when loadingconftest.py.Are these changes tested?
Yes. Reproduced locally by creating a minimal venv with only the original test dependencies, reproduced the failure, then verified the fix resolves it.
Are there any user-facing changes?
No